home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Atlanta_1990 / Atlanta-Devcon.3 / Fun&Fonts / Makefile < prev    next >
Encoding:
Makefile  |  1992-08-26  |  613 b   |  27 lines

  1. #
  2. # MakeFile for Example2
  3. #
  4.  
  5. CFLAGS= -b1 -cfistq -d0 -ms0 -rr1 -v
  6. LFLAGS= DEFINE @_main=@_tinymain SMALLDATA SMALLCODE NODEBUG
  7. LIBS=    LIB:lcsr.lib
  8. OBJS1=    Example1.o RenderInfo.o
  9. OBJS2=    Example2.o Example2Strings.o RenderInfo.o
  10.  
  11. .c.o:
  12.     @LC $(CFLAGS) $*
  13.  
  14. All: Example1 Example2
  15.  
  16. Example1: $(OBJS1) MakeFile
  17.     @BLink FROM LIB:c.o $(OBJS1) TO Example1 LIB $(LIBS) $(LFLAGS)
  18.  
  19. Example2: $(OBJS2) MakeFile
  20.     @BLink FROM LIB:c.o $(OBJS2) TO Example2 LIB $(LIBS) $(LFLAGS)
  21.  
  22. Example2.o: Example2.c Example2Strings.h RenderInfo.h
  23.  
  24. Example2Strings.o: Example2Strings.c Example2Strings.h
  25.  
  26. RenderInfo.o: RenderInfo.c RenderInfo.h
  27.